#include using namespace std; //fundamental theorem of structured programming //sequence, choice, repetition void main() { int i = 1; while(i <= 10) { int j = 1; while(j <=10) { cout << i * j << " "; j++; } cout << endl; i++; } } //void main() //{ // int i = 100; // // while(i > 0) // { // cout << i << endl; // //i = i - 1; // i--; // } //} //void main() //{ // int index = 0; // // while(index < 1000) // { // index++; // cout << index << ") I will not talk in class" << endl; // //index = index + 1; // } // //} //void main() //{ // //floating point number // float temperature; // // cout << "What is the current temperature? "; // cin >> temperature; // // if(temperature > 88) // { // cout << "Hot" << endl; // } // else // { // cout << "It's not hot rather it is "; // // if(temperature > 75) // { // cout << "Warm" << endl; // } // else if(temperature > 50) // { // cout << "mild" << endl; // } // else if (temperature > 32) // { // cout << "cool" << endl; // } // else // { // cout << "cold" << endl; // } // } //}